All Questions
Tagged with backendmicroservices
7 questions
-2votes
0answers
51views
Architecture for TypeScript backend with multiple entry points or apps [closed]
I suspect this is a solved problem because I'm not doing anything very unusual, and yet I'm struggling to work out a sensible structure for my TypeScript/Node.js backend. Briefly, the project consists ...
3votes
3answers
429views
Encapsulating a central soap service in a microservice?
I am currently developing an application (rest-backend and SPA) that requires information from people (personal data, department, superior... ). Our company has a central directory for this purpose. ...
-3votes
1answer
144views
Using two different languages where one would suffice for the task (microservices)
I previously asked this on StackOverflow, but doesn't fit there and I was suggested to move it here. I was thinking about using two seperate backend languages for seperating concerns in a project of ...
-1votes
1answer
701views
Securing http communication between backend services [closed]
What is a good way to secure http communication between two backend services which are not hosted on the same network? One way might be to have a shared secret in both services but I feel like that is ...
0votes
1answer
740views
Using databases to store temporary results between the backend and frontend of a webservice
I have a multithreaded backend application. It is inputted x, and outputs y, and this makes up a "job". A job can take up to several seconds to complete. The application is fed input via ...
0votes
2answers
252views
Proper way to manage database for distributed backend architecture
My application backend consists of a bunch of standalone tasks linked together by messaging queues. They all need to access the same SQL database in order to run and store their results. Right now, ...
3votes
1answer
4kviews
How to architect Notification service logic?
We are building a notification service whose work is to send push notification to end user. There are two types of notifications Group notification where we send same text notification to all user's ...